Microsoft® Script Debugger
View Menu
Home |

See Also


Project Explorer
Displays the Project Explorer, which displays a hierarchical list of the currently open files and their contents.

Double-clicking any item in the file list displays the contents of the selected file in the Code window. Non-scripting code items are greyed, while scripting code is shown normally, with keywords colored (if the language engine supports keyword coloring).

Keyboard shortcut: CTRL+R

Immediate Window
Displays the Immediate window and displays information resulting from debugging statements in your code or from commands typed directly into the window.

Use the Immediate window to:

Toolbar button: Keyboard shortcut: CTRL+G
Call Stack Window
Displays the Call Stack window, which lists the procedure calls that have started but are not completed.

When executing code in a procedure, the name of that procedure is added to a list of active procedure calls. If that procedure then calls another procedure, there are two procedures on the list of active procedure calls. Each time a procedure calls another Sub or Function procedure, it's added to the list. Each procedure is removed from the list as execution is returned to the calling procedure.

Toolbar button: Keyboard shortcut: CTRL+L


© 1996 by Microsoft Corporation.